home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / msk312.zip / MSCUSTOM.INI < prev    next >
Text File  |  1992-09-29  |  4KB  |  100 lines

  1. ; FILE MSCUSTOM.INI.
  2. ;
  3. ; Sample individual customization file for MS-DOS Kermit 3.11 or 3.12.
  4. ; Make any desired changes, and then store this file in the same directory
  5. ; as your MSKERMIT.INI initialization file.
  6. ;
  7. ; Author: Christine M. Gianone, Septermber 1992.
  8. ;
  9. echo Customizations...
  10.  
  11. COMMENT - Serial communication settings
  12.  
  13. set port 1            ; Use COM1 (this is the default anyway)
  14. do vax                ; Set parameters for talking to a VAX
  15.                 ; (these are Kermit's defaults anyway)
  16.  
  17. ; The following commands are commented out, shown as samples only.
  18. ; Replace with settings appropriate for your connection.
  19. ;
  20. ; set speed 9600                ; Transmission speed
  21. ; set parity even        ; Even parity, 7 data bits
  22. ;
  23. ; If the remote host or service does NOT use parity, you should use the
  24. ; following two settings:
  25. ;
  26. ; set parity none
  27. ; set terminal display 8
  28.  
  29. COMMENT - Printing
  30. ;
  31. ; Uncomment the following command if you don't have a printer.  That is,
  32. ; remove the semicolon from the left margin.  This command prevents
  33. ; host-initiated printing operations from hanging your PC.  If desired, you
  34. ; can also have print operations directed to a file (replace "nul" by a file
  35. ; name, for example "set printer c:\logs\printer.log").
  36. ;
  37. ; set printer nul
  38.  
  39. COMMENT - TCP/IP network configuration.
  40. ;
  41. ; To use TCP/IP connections, replace the dummy values below with appropriate
  42. ; values for your network (consult your network manager) and uncomment the SET
  43. ; TCP/IP commands.
  44. ;
  45. ; SET TCP/IP ADDRESS 123.123.123.123  ; My PC's numeric IP address
  46. ; SET TCP/IP SUBNETMASK 255.255.255.0 ; My physical network's subnet mask
  47. ; SET TCP/IP DOMAIN FOO.BAR.EDU       ; My network's domain name
  48. ; SET TCP/IP GATEWAY 123.123.123.1    ; My network gateway's IP address
  49. ; SET TCP/IP PRIMARY-NAMESERVER 123.123.123.2   ; Primary nameserver's address
  50. ; SET TCP/IP SECONDARY-NAMESERVER 123.123.123.3 ; fallback nameserver address
  51. ; SET TCP/IP BROADCAST: 255.255.255.255 ; My network's broadcast address
  52.  
  53. ; TELNET macro for making TCP/IP connections.
  54. ;
  55. ;   "TELNET <ip-host-name-or-address>" makes a new TCP/IP connection.
  56. ;   "TELNET" (by itelf) resumes the current TCP/IP connection.
  57. ;
  58. define telnet set port tcp \%1 \%2, pause 0, if success connect
  59.  
  60. COMMENT - Key definitions.  Uncomment these if desired, and/or add your own.
  61. ;
  62. ; set key \96 \27        ; Exchange ESC and
  63. ; set key \27 \96        ; accent-grave keys during terminal emulation.
  64.  
  65. COMMENT - Default terminal emulation screen color is blue on white.
  66. ;
  67. ; Uncomment and change to suit your tastes.
  68. ; See pages 81-82 of "Using MS-DOS Kermit" for color information.
  69. ;
  70. ; set terminal color 0 34 47    ; Terminal color is blue on white.
  71.  
  72. COMMENT - File transfer preferences.
  73. ;
  74. ;;; Uncomment and/or change to suit your needs.
  75. ;
  76. ; set block 3            ; Block check 3 = 16-bit CRC.
  77. ; set window 2            ; 2 Window slots.
  78. ; set receive packet-length 1000 ; Packet length is governed by receiver.
  79. ;
  80. ;;; For TCP/IP connections, the following is recommended:
  81. ;
  82. ; set window 4            ; 2 Window slots.
  83. ; set receive packet-length 500 ; Kermit packet fits in TCP/IP packet.
  84. ; set flow none            ; Let TCP/IP manage the flow control.
  85.  
  86. ; Macros for transferring files in text and binary mode...
  87. ;
  88. define bsend set file type binary,  send \%1 \%2  ; SEND in binary mode
  89. define tsend set file type text,    send \%1 \%2  ; SEND in text mode
  90. define bget remote set file type binary, get \%1  ; GET in binary mode
  91. define tget remote set file type text,   get \%1  ; GET in text mode
  92.  
  93. COMMENT - Character set preferences.  Change to suit your needs.
  94. ;
  95. ; set terminal character-set latin1 ; Remote host's character set
  96. ; set transfer character-set latin1 ; File transfer character set
  97. ; set file character-set cp850      ; PC's local character set 
  98.  
  99. echo
  100.